home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacFormat 2001 May
/
macformat_103_may_2001.iso
/
Shareware
/
Utilities
/
MacGhostView Folder
/
ghostscript
/
gs6.01
/
lib
/
decrypt.ps
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2000-11-21
|
295 b
|
14 lines
|
[
TEXT/R*ch
]
% Decrypt an eexec-encoded file.
(t.in) (r) file /in exch def
(t.out) (w) file /out exch def
256 string /buf exch def
55665 % eexec encryption seed
{ in buf readhexstring /more exch def
dup .type1decrypt out exch writestring
more not { exit } if
} loop
in closefile
out closefile
quit